home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / music / camsys.zip / CAMSYS.TXT < prev   
Text File  |  1994-05-10  |  2KB  |  85 lines

  1.  
  2.  
  3.  CameoSys 1.1                                                      January 1994
  4.  ==============================================================================
  5.  
  6.  This is an old SYSEX dump program, and should only be used temporary until
  7.  a better program is available.
  8.  
  9.  It does transmitting and receiving of SYSEX files by MIDI.
  10.  
  11.  It can also be used for receiving SDS dumps. 
  12.  
  13.  ==============================================================================
  14.  
  15.  How to use it.
  16.  
  17.  
  18.    1. For transmitting a file by MIDI:
  19.  
  20.       > camsys -t filename
  21.  
  22.  
  23.    2. For receiving a file by MIDI:
  24.  
  25.       > camsys -r filename
  26.  
  27.       Then start dump from remote device (synth).
  28.  
  29.  
  30.    3. For sending bits and bytes:
  31.  
  32.       > camsys -s #1,#2,#3,...,#n
  33.  
  34.       Where # is a hexadecimal number (00-FF), or a code (see help).
  35.  
  36.  
  37.    4. For help:
  38.  
  39.       > camsys -?
  40.  
  41.  
  42.    5. For receiving Sample Dump:
  43.  
  44.       > camsys -s <Sample Dump Request>,/r<filename>
  45.  
  46.       ** /r = receive into file
  47.  
  48.  
  49.       Sample Dump Request:
  50.  
  51.         F0 7E cc 03 ss ss F7
  52.  
  53.         cc       =     channel number (0-15 = 1-16)
  54.         ss ss    =     sample number requested (LSB first)
  55.  
  56.  
  57.       Receive first sample on midi channel 1 into file 'dog.sds':
  58.  
  59.         > camsys -s F0,7E,00,03,00,00,F7,/rdog.sds
  60.  
  61.       Receive second sample on midi channel 6 into file 'cat.sds':
  62.  
  63.         > camsys -s F0,7E,05,03,01,00,F7,/rcat.sds
  64.  
  65.  
  66.       A batch file could look something like this:
  67.  
  68.         @echo off
  69.         echo ** GetSDS
  70.         echo ** Usage: GETSDS  midiChannel  sampleNumber(00-FF)  filename
  71.         echo **
  72.         camsys -s F0,7E,%1,03,%2,00,F7,/r%3
  73.  
  74.  
  75.       Remember: all numbers in hexadecimal!
  76.  
  77.       Please note that receiving MIDI SDS with a standard SYSEX program takes
  78.       *MUCH* longer time than with a real SDS receiver program.      
  79.  
  80.  
  81.  ==============================================================================
  82.  
  83. -o-
  84.  
  85.